39. Solutions: IN

Solutions to IN Questions

  1. SELECT name, primary_poc, sales_rep_id
    FROM accounts
    WHERE name IN ('Walmart', 'Target', 'Nordstrom');
  2. 2.
SELECT *
FROM web_events
WHERE channel IN ('organic', 'adwords');

Code

If you need a code on the https://github.com/udacity.